home *** CD-ROM | disk | FTP | other *** search
/ Games Central GT Digital… Q3 Premier Trimestre '98 / GT_DPK.ISO / pc / data / menu.dxr / 00047_Scroll Track behavior.ls < prev    next >
Encoding:
Text File  |  1995-08-25  |  380 b   |  14 lines

  1. on mouseDown me
  2.   set mousePosition to the mouseV
  3.   set indicatorPosition to sendAllSprites(#getIndicatorPosition)
  4.   case 1 of
  5.     (indicatorPosition > mousePosition):
  6.       set direction to #up
  7.     (indicatorPosition < mousePosition):
  8.       set direction to #down
  9.     (indicatorPosition = mousePosition):
  10.       exit
  11.   end case
  12.   sendAllSprites(#scrollText, direction, #page)
  13. end
  14.